home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000264_news@columbia.edu_Mon Jul 3 15:14:08 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15366
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Jul 1995 11:14:14 -0400
  3. Received: by apakabar.cc.columbia.edu id AA14311
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Jul 1995 11:14:12 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Ascii file transfers
  9. Date: 3 Jul 1995 15:14:08 GMT
  10. Organization: Columbia University
  11. Lines: 27
  12. Message-Id: <3t91g0$dv2@apakabar.cc.columbia.edu>
  13. References: <3t4tce$oa1$1@mhade.production.compuserve.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3t4tce$oa1$1@mhade.production.compuserve.com>,
  18. Santiago Albanese  <75030.2743@CompuServe.COM> wrote:
  19. >Does anyone know where I can find a reliable kermit 
  20. >program ( macro ) to do unattended ascii file captures ? Be that 
  21. >a program that dials another comp. , login and capture some text 
  22. >then hang up . I bougth the C-kermit book but it leaves this 
  23. >endeavor as an exercise .
  24. >
  25. Then you have to buy the Answer Booklet :-)
  26.  
  27. Seriously, it shouldn't be that hard to figure out.  Run a 
  28. connection-establishment and login script, such as the ones that
  29. *are* shown in the book, and also are included with C-Kermit in your
  30. services directory macros in the C-Kermit initialization file,
  31. and then:
  32.  
  33.  1. Start a session log: "log session capture.txt".
  34.  
  35.  2. OUTPUT the host command to display the desired file,
  36.     e.g. "output type foo.txt\13".
  37.  
  38.  3. INPUT the next system prompt, e.g.
  39.     "input 60 \13\10$\32".
  40.  
  41.  4. Close the session log: "close session".
  42.  
  43. - Frank